home *** CD-ROM | disk | FTP | other *** search
- REM $INCLUDE: 'fastgraf.bi'
-
- DEFINT A-Z
-
- OldMode = FGgetmode
- FGsetmode 16
-
- FGsetcolor 14
- FGtext "yellow", 6
-
- FGsetcolor 10
- FGtext " green", 6
-
- FGsetcolor 7
- MinX = FGxconvert(0)
- MaxX = FGxconvert(16) - 1
- MinY = FGyconvert(24)
- MaxY = FGyconvert(25) - 1
- FGrect MinX, MaxX, MinY, MaxY
- FGsetcolor 12
- FGlocate 24, 0
- FGtext " Press any key. ", 16
- FGwaitkey
-
- FGsetmode OldMode
- FGreset
-
- END